home *** CD-ROM | disk | FTP | other *** search
/ The Pacifier Press Kit / The Pacifier Press Kit.iso / pc / Program.dxr / Internal_26_Preview Back Button.ls < prev    next >
Encoding:
Text File  |  2005-02-15  |  370 b   |  25 lines

  1. on mouseWithin me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(0)
  7. end
  8.  
  9. on mouseUp me
  10.   cursor(0)
  11.   sound(3).play(member("Click"))
  12.   case the frameLabel of
  13.     "Preview_1A":
  14.       go("Preview_3")
  15.     "preview_2A":
  16.       go("Preview_1")
  17.     "Preview_3a":
  18.       go("Preview_2")
  19.     "Preview_4a":
  20.       go("preview_3")
  21.     "Preview_5a":
  22.       go("preview_4")
  23.   end case
  24. end
  25.